@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    border: 0;
  /*  padding: 0;
    box-sizing: border-box;*/
    font-family: "Poppins", sans-serif;
}

body {
    background:#fff;
    /* background: linear-gradient(45deg, #FFA500, #FFFF00);  
    background-repeat: no-repeat;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;*/
}

.corpo {
    background: #FFF;
    min-width: 320px;
    min-height: 40vh;
    padding: 2rem;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px;
    border-radius: 8px;
    z-index: 1;
}

h2 {
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

h2::before {
    content: '';
    position: absolute;
    height: 4px;
    width: 28px;
    bottom: 3px;
    left: 0;
    border-radius: 8px;
    background: linear-gradient(45deg, #FFA500, #FFFF00);
}

form {
    display: flex;
    flex-direction: column;
}

.input-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-field .underline::before {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
}

.input-field .underline::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #FFA500, #FFFF00);
    transform: scaleX(0);
    transition: all .3s ease-in-out;
    transform-origin: left;
}

.input-field input:focus ~ .underline::after {
    transform: scaleX(1);
}

.input-field input {
    outline: none;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    width: 100%;
}

.input-field input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.btn-outline-success button{
    margin-top: 2rem;
    padding: 0.4rem;
    width: 100%;
    background: linear-gradient(to left, #FFA500, #FFFF00);
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
    border-radius: 4px;
    transition: all 0.3s ease;
}

button .btn-outline-success:hover {
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #FFA500, #FFFF00);
}

.footer {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
}

.footer span {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.8rem;
    text-align: center;
}

.footer .social-field {
    padding: 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
}

.footer .social-field a i {
    margin: 0 0.5rem;
    width: 15px;
}

.footer .social-field a {
    text-decoration: none;
    color: white;
}

.footer .social-field.twitter {
    background: linear-gradient(to right, #1e3c72, #2a5298);
}

.footer .social-field.facebook {
    background: linear-gradient(to right, #1e3c72, #2a5298);
}

/* ***********   stylo da Janela Modal ******************  */

button.btn-outline {
    background-color: #fff;
    color: #47a447;
    padding: 5px 8px;
    border: 1px solid #47a447;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all .3s ease;
}

button.btn-outline:hover {
    background-color: #47a447;
    color: #fff;
}

.modal{
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Ocultar a janela modal fixed block*/
   /* opacity: 1;
    display: none; */
    z-index: 2;
}

.conteudo-modal{
    margin: 0 auto;
    margin-top: 3%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 8px;
}

.cabecalho-modal{
    padding: 1px 8px;
    display: flex;
    justify-content: space-between;
    border-bottom: solid #eee 1px;

}

.cabecalho-modal .cabecalho-titulo-modal{
    font-weight: bold;
    margin: 10px 0;
}

.cabecalho-modal .cabecalho-modal-fechar{
    padding: 20px 10px;
    cursor: pointer;
}

.corpo-modal{
    padding: 1px 8px 8px 8px;
}

.rodape-modal{

    border-top: solid #eee 1px;
    padding: 8px;
} 